Batch File Push Transaction
This API is used to process the OCT validated batch transactions. The validation will be done by ValidateBatchFilePushTransaction. After validation, the validated transaction will be processed by BatchFilePushTransaction.
Method: POST
Endpoint:
http://localhost:4041/rpc/VisaDirectService/BatchFilePushTransaction
Request
Payload Parameters
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| fileId | String | Yes | It is the unique ID that is generated while a file is uploaded. |
| processTransaction | Boolean | Yes | This field should have true or false. If true, the batch file will be processed, and if false, the batch file will be canceled. |
Sample Request
{
"fileId": "92001",
"processTransaction": true
}
Sample Response
{
"message": "2 of 3 Batch Transactions Initiated Successfully"
}